home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / MacAppMods1.0d3 / MacAppHeaders.cp < prev    next >
Text File  |  1994-06-25  |  4KB  |  170 lines

  1. //Changed to add debugging defines MEA 5/28/94
  2. #pragma check_header_flags on
  3.  
  4. #define OBSOLETE                                //      CountAppFile() etc.
  5.  
  6. #define qMacApp 1
  7. #define qNeedsAppleEventMgr 1
  8. #define qNeedsEditionMgr 1
  9. #define qNeedsHelpMgr 1
  10. #define qNeedsProcessMgr 1
  11. #define qNeedsAliasMgr 1
  12. #define qNeedsFolderMgr 1
  13. #define qNeedsSystem7 1
  14. #define qNeedsColorQD 1
  15.  
  16.  
  17. #if wantDebugging
  18.     #define qDebug 1
  19.     #define qDebugMsg   1
  20.     #define qNames  1
  21.     #define qSym  1
  22.     #define qTheDebugger  1
  23.     #define qInspector  1
  24.     #define qPerform  0    //CW can't compile with qPerform because there is an "illegal"
  25.                         //computed reference between segments STRIPPADRESS - __QSTRIPADDRESS
  26.  
  27. #else
  28.     #define qDebug 0
  29.     #define qDebugMsg   0
  30.     #define qNames  0
  31.     #define qSym  0
  32.     #define qTheDebugger  0
  33.     #define qInspector  0
  34.     #define qPerform  0
  35. #endif
  36.  
  37. #define qTemplateViews 1
  38. #define qWriteTemplateViews 1
  39. #ifdef powerc
  40.  #define qPowerPC 1
  41. #else
  42.  #define qPowerPC 0
  43. #endif
  44.  
  45. #include <Aliases.h>
  46. #include <AppleEvents.h>
  47. #include <AppleTalk.h>
  48. #include <Balloons.h>
  49. #include <ConditionalMacros.h>
  50. #include <Controls.h>
  51. #include <Desk.h>
  52. #include <Devices.h>
  53. #include <Dialogs.h>
  54. #include <Editions.h>
  55. #include <Errors.h>
  56. #include <Events.h>
  57. #include <Files.h>
  58. #include <Fonts.h>
  59. #include <GestaltEqu.h>
  60. #include <Icons.h>
  61. #include <Lists.h>
  62. #include <LowMem.h>
  63. #include <Memory.h>
  64. #include <Menus.h>
  65. #include <MixedMode.h>
  66. #include <OSEvents.h>
  67. #include <OSUtils.h>
  68. #include <Packages.h>
  69. #include <Palettes.h>
  70. #include <Picker.h>
  71. #include <Printing.h>
  72. #include <Processes.h>
  73. #include <QDOffscreen.h>
  74. #include <Quickdraw.h>
  75. #include <QuickdrawText.h>
  76. #include <Resources.h>
  77. #include <Scrap.h>
  78. #include <Script.h>
  79. #include <StandardFile.h>
  80. #include <TextEdit.h>
  81. #include <TextUtils.h>
  82. #include <ToolUtils.h>
  83. #include <Traps.h>
  84. #include <Windows.h>
  85.  
  86. #include <limits.h>
  87. #include <setjmp.h>
  88. #include <stdarg.h>
  89. #include <stddef.h>
  90. #include <stdio.h>
  91. #include <stdlib.h>
  92. #include <string.h>
  93.  
  94. #if wantDebugging
  95.     //CW currently can't output to stderr.  What follows is a kludge that puts the 
  96.     //message in the debugger window.
  97.     #undef fprintf
  98.     #define fprintf    CWfprintf
  99.     int CWfprintf(FILE * ignore, const char * format, ...);//defined in UFailure.cp
  100.  
  101.     //CW currently can't call _addDevHandler.  Define it to nothing for now.
  102.     #undef _addDevHandler
  103.     #define _addDevHandler(a,b,c,d,e,f,g)
  104.  
  105. #endif
  106.  
  107. #if !USESCODEFRAGMENTS
  108. extern pascal OSErr InitEditionPackVersion()
  109.  FIVEWORDINLINE(0x3F3C, 0x0011, 0x303C, 0x0100, 0xA82D);
  110. #endif
  111.  
  112. #if 1
  113.         #include "ObjectHeap.h"
  114.         #include "BestFitHeap.h"
  115.         #include "Geometry.h"
  116.         #include "MacAppTypes.h"
  117.         #include "MemoryHeap.h"
  118.         #include "NubInspectorHooks.h"
  119.         #include "PascalString.h"
  120.         #include "PlatformMemory.h"
  121.         #include "Toolbox.h"
  122.         #include "UAdorners.h"
  123.         #include "UAppleEvents.h"
  124.         #include "UApplication.h"
  125.         #include "UAssociation.h"
  126.         #include "UBehavior.h"
  127.         #include "UBusyCursor.h"
  128.         #include "UClassDesc.h"
  129.         #include "UClassDescIterator.h"
  130.         #include "UClipboardMgr.h"
  131.         #include "UCommand.h"
  132.         #include "UCommandHandler.h"
  133.         #include "UControl.h"
  134.         #include "UDebug.h"
  135.         #include "UDependencies.h"
  136.         #include "UDesignator.h"
  137.         #include "UDeskScrapView.h"
  138.         #include "UDialogBehavior.h"
  139.         #include "UDocument.h"
  140.         #include "UDrawingEnvironment.h"
  141.         #include "UDynamicArray.h"
  142.         #include "UErrorMgr.h"
  143.         #include "UEvent.h"
  144.         #include "UEventHandler.h"
  145.         #include "UFailure.h"
  146.         #include "UFile.h"
  147.         #include "UFileBasedDocument.h"
  148.         #include "UFileHandler.h"
  149.         #include "UGeometry.h"
  150.         #include "UIterator.h"
  151.         #include "UList.h"
  152.         #include "UListIterator.h"
  153.         #include "ULoMem.h"
  154.         #include "UMacAppGlobals.h"
  155.         #include "UMacAppUtilities.h"
  156.         #include "UMemory.h"
  157.         #include "UMenuMgr.h"
  158.         #include "Unmangler.h"
  159.         #include "UObject.h"
  160.         #include "UPatch.h"
  161.         #include "UPointerObject.h"
  162.         #include "UPopup.h"
  163.         #include "UPrintHandler.h"
  164.         #include "UScroller.h"
  165.         #include "UStream.h"
  166.         #include "UView.h"
  167.         #include "UViewServer.h"
  168.         #include "UWindow.h"
  169. #endif
  170.